'宣言
Public Sub InsertRange( _ ByVal index As Integer, _ ByVal collection As IEnumerable(Of T) _ )
public void InsertRange( int index, IEnumerable<T> collection )
パラメータ
- index
- 新しい要素を挿入する位置の0から始まるインデックス。
- collection
- SpreadCollection<T> に挿入する要素を含むコレクション。
'宣言
Public Sub InsertRange( _ ByVal index As Integer, _ ByVal collection As IEnumerable(Of T) _ )
public void InsertRange( int index, IEnumerable<T> collection )
例外 | 解説 |
---|---|
System.ArgumentNullException | collection null です。index が0未満です。または、index が Count を超えています。 |
System.ArgumentOutOfRangeException | index が0未満です。または、index が Count を超えています。 |